home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / buttnbar / frmprope.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1999-01-14  |  1.7 KB  |  61 lines

  1. VERSION 5.00
  2. Begin VB.Form frmProperties 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "Properties"
  5.    ClientHeight    =   1620
  6.    ClientLeft      =   30
  7.    ClientTop       =   270
  8.    ClientWidth     =   2595
  9.    ControlBox      =   0   'False
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   1620
  14.    ScaleWidth      =   2595
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   1  'CenterOwner
  17.    Begin VB.CommandButton cmdOK 
  18.       Caption         =   "&OK"
  19.       Default         =   -1  'True
  20.       Height          =   324
  21.       Left            =   1440
  22.       TabIndex        =   2
  23.       Top             =   1152
  24.       Width           =   996
  25.    End
  26.    Begin VB.PictureBox picImage 
  27.       BorderStyle     =   0  'None
  28.       Enabled         =   0   'False
  29.       Height          =   504
  30.       Left            =   84
  31.       ScaleHeight     =   510
  32.       ScaleWidth      =   525
  33.       TabIndex        =   0
  34.       Top             =   84
  35.       Width           =   528
  36.    End
  37.    Begin VB.Label lblEnabled 
  38.       Caption         =   "Enabled"
  39.       Height          =   228
  40.       Left            =   816
  41.       TabIndex        =   3
  42.       Top             =   312
  43.       Width           =   1620
  44.    End
  45.    Begin VB.Label lblCaption 
  46.       Caption         =   "Caption"
  47.       Height          =   228
  48.       Left            =   816
  49.       TabIndex        =   1
  50.       Top             =   48
  51.       Width           =   1620
  52.    End
  53. Attribute VB_Name = "frmProperties"
  54. Attribute VB_GlobalNameSpace = False
  55. Attribute VB_Creatable = False
  56. Attribute VB_PredeclaredId = True
  57. Attribute VB_Exposed = False
  58. Private Sub cmdOK_Click()
  59.     Unload Me
  60. End Sub
  61.